home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1997 September / Macworld (1997-09).dmg / Games World / Games Utilities / NetRPG / NetRPG Manual 3 / NetRPG Manual 3.rsrc / TEXT_1400_Character sheets.txt < prev    next >
Text File  |  1997-05-21  |  5KB  |  109 lines

  1. Character Sheets    
  2.  
  3. "/help sheet" gives:
  4. ===========================
  5. Character Sheet Commands
  6. ===========================
  7. /WHO name - prints out that player's character info (
  8. /WHO name #-# - prints out only lines # to #
  9. /ME - aliases to "/who my_name" and shows your character
  10. /ADD line - adds 'line' to your character info (on disk at the server)
  11. NOTE: Lines beggining with a '-' are invisible to other players.
  12.    Ex: "/add - Alignment = Chaotic Evil"
  13. /AFTER # line - adds 'line' after line #.  To insert at the beginning, use /after 0 blah
  14. /DELETE,/DEL #, /DEL #-# - deletes line number # from your character.
  15. /REPLACE,/REP # line - replace line # with 'line'
  16. /BACKUP - outputs a text backup of your character sheet
  17. /LINE # INC - increments a number in ()'s on line #
  18. /LINE # DEC - deccrements a number in ()'s on line #
  19. /LINE # ADD mod - adds value of 'mod' to a number in ()'s on line #
  20. /LINE # SET mod - places value of 'mod' into a set of ()' on line #
  21.  
  22. All characters now have a sheet that is stored on disk by the server.  This sheet can be seen by other players, except for lines that begin with a dash ("-").
  23.  
  24. /ADD line - adds 'line' to your character sheet
  25.  
  26. Example Character Entry Session:    
  27. /add Lupus  Half-Elf  Ranger        Lvl:5  XP for next level:64,000
  28. /add -  XP=47,000   HP=56 (+roll for 6th level)
  29. /add STR:17   DEX:17   CON:17   INT:10   WIS:14   CHA:5
  30. /add +=+ ABILITIES/PROFICIENCIES +=+
  31. /add 2 Handed fighting in <= studded, Tracking @ +1 per lvl > 3rd
  32. /add Creature Empathy, Followers @ 10th, Set Snares, Blind Fighting
  33. /add +=+ WEAPONS +=+
  34. /add Black Morning Star - create darkness 2 per wk,10'rad,I'm immune
  35. /add - +2/2/2   2d4+3/1d6+4  THACO=13  SPD=3
  36.  
  37. If another player types "/who Lupus" they would see:
  38. =+= Character Sheet for [lupus] =+=
  39. Lupus  Half-Elf  Ranger        Lvl:5  XP for next level:64,000
  40. STR:17   DEX:17   CON:17   INT:10   WIS:14   CHA:5
  41. +=+ ABILITIES/PROFICIENCIES +=+
  42. 2 Handed fighting in <= studded, Tracking @ +1 per lvl > 3rd
  43. Creature Empathy, Followers @ 10th, Set Snares, Blind Fighting
  44. +=+ WEAPONS +=+
  45. Black Morning Star - create darkness 2 per wk,10'rad,I'm immune
  46.  
  47. Character Sheet Editing:    
  48. /AFTER # line - adds 'line' after line #.  To insert at the beginning, use /after 0 blah
  49. Example sheet:
  50.  1  Name
  51.  2  Abilities
  52. /after 1 HP=5
  53. Gives:
  54.  1  Name
  55.  2  HP=5
  56.  3  Abilities
  57.  
  58. /DELETE,/DEL # - deletes line number # from your character.  "/del 10-20" will delete lines 10 through 20.
  59.  
  60. /WHO name - prints out that player's character info.  So, "/who gawyn" will send gawyn's public character sheet to you, or send all of it if the DM typed it.   "/who gawyn 2-6" will print out only lines 2 through 6
  61.  
  62. /ME - aliases to "/who my_name" and shows your character.  "/me 10-20" will show lines 10-20 of your character sheet.
  63.  
  64. /REPLACE, /REP # line - replaces line '#' with 'line'.  very useful for updating information in your sheet like experience points, number of arrows, etc.
  65.  
  66. /BACKUP - outputs a backup of your sheet, preformatted with /ADD's.  This can be easily copied and pasted into a file on the player's computer.
  67. Example sheet:
  68.  1  Name
  69.  2  Abilities
  70. Example output of /BACKUP:
  71. /del 1-1000
  72. /add Name
  73. /add Abilities
  74.  
  75. /LINE # [DEC,INC,ADD,SET] - modifies a single line - very useful for keeping track of arrows, charges in wands, experience points, etc.  Warning - this uses VERY simple checking to find the number in ()'s on the line so only use one set of parens directly around the number.
  76. Example sheet:
  77.  1  Biff   XP: (27000)
  78.  2  short bow with flight arrows (19)
  79.  3  gold coins (180)
  80. Commands you might use:
  81. /line 1 add 3000    (after getting 3000 xp)
  82. /line 2 dec   (after shooting an arrow)
  83. /line 3 set 0    (after getting robbed)
  84.  
  85. Other Player Hints    
  86.     In order to make the players' lives easier, it helps to use a fun program like Muddweller (by Olivier Maquelin, available on info-mac and umich), TinkeriView (http://www.tinkeri.com) or TinyTalk (don't know the author names offhand) which both allow macros.  Muddweller runs on Macs, and TinyTalk is a curses based client that runs on UN*X.  With either, you can set up nifty macros for readying weapons.  Example:
  87.  
  88.     The commands we want:
  89.  
  90. /READY 3 14 2d4+3 glowing morning star
  91. /SET ac 3
  92. /DO puts away his shield and readies his two handed monster masher
  93.  
  94.     In Muddweller specifically, the macro would be:
  95.  
  96. send /READY 3 14 2d4+3 glowing morning star\n
  97. send /SET ac 3\n
  98. send /DO puts away his shield and readies his two handed monster masher\n
  99.  
  100.     In TinyTalk, the macro would be (all on a single line):
  101.  
  102. /def ready_mace=/READY 3 14 2d4+3 glowing morning star%;/SET ac 3%;/DO puts away his shield and readies his two handed monster masher
  103.  
  104. Another note on tinytalk:  Since tinytalk accepts commands preceded with slashes, just like NetRPG does, it requires you to put an extra slash in there if you want to send the slash to the server.  (ie, "//who" instead of just "/who")  To solve this problem, it is helpful to have a ".tinytalk" file in your home directory with macros like : "/def who=/who" along with your weapons macros, so that you can then type just "/who".
  105.  
  106. If your MUD client handles VT100 codes, you may want to use the following:
  107. /set vt on - turns on inverse video for any channel-wide messages sent by a user
  108. /set vt off - turns it off (default setting)
  109. Note: Muddweller does _not_ do inverse video, even though it handles vt100 codes. :-\